home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr30 / video29.zip / VIDEO.DOC next >
Text File  |  1993-05-01  |  2KB  |  65 lines

  1.  
  2.  
  3.               Program: VIDEO.EXE
  4.               Purpose: Provide a non-standard number of lines per screen.
  5. Hardware Requirements: CGA, EGA or VGA.
  6.               Written: 03/03/89
  7.              Modified: 10/12/89
  8.           Copyrighted: 03/17/89
  9.              Compiler: TurboC 2.0
  10.             Assembler: Tasm 1.0
  11.                Author: Chris Curran
  12.                        Aquila Data Systems
  13.                        10208 Marsh Harbor Way #8
  14.                        Riverview, FL.  33569
  15.                        Data: (813)623-2320
  16.  
  17.  
  18. Operation
  19.  
  20.     Video is a program that will "kick" your crt into a non-standard
  21.   number of lines per screen. The number of lines used will depend on
  22.   your hardware. CGA and EGA cards are initialized at 29 lines per
  23.   screen and VGA cards are set for 30 lines per screen. NOTE: this
  24.   program DOES NOT work on Zenith CGA cards that double-scan the
  25.   screen (to provide 400 line res).
  26.  
  27.     Video works well with both the standard COMMAND.COM and 4DOS.COM.
  28.   However, only a few of your regular DOS programs will use the new
  29.   line count. Actually, the only program that I've found to utilize
  30.   the new line count is QEdit. Programs that interrogate DOS for the
  31.   current row/col values will work - those that don't, won't.
  32.  
  33.     Most of the "big" software programs (Word, WordPerfect, etc..)
  34.   will not use the new line count. In fact, they usually reset the
  35.   card back to it's normal operating mode. Should you be plagued by
  36.   this, simply setup a batch file that calls the program, then calls
  37.   Video on exit. For example, a batch to call MS Word might look like
  38.   this:
  39.  
  40.             d:
  41.             cd \word\data
  42.             word %1 %2 %3
  43.             video
  44.  
  45.     Or, if you're a 4Dos'er, setup an alias:
  46.  
  47.             alias w `pushd d:\word\data^word %1 %2 %3^popd^video`
  48.  
  49.  
  50.  
  51. Remuneration
  52.  
  53.     Since this "program" is actually a routine in another product of
  54.   mine, I feel no need to request funds for your use of this program.
  55.   Should you have an over-bearing desire to empty your pockets of
  56.   change, register your favorite Shareware program - Lord knows, not
  57.   near enough get registered. If this does not cure your urge to
  58.   donate, send me $15 to the address above, and I'll send you the
  59.   source code (be sure to include your return address!).
  60.  
  61.  
  62. Enjoy!
  63. Chris Curran
  64.  
  65.